home *** CD-ROM | disk | FTP | other *** search
- class Heroes.AnyBox extends MovieClip
- {
- var myBox;
- var x;
- var y;
- var z;
- var w;
- var b;
- var h;
- function AnyBox()
- {
- super();
- this._visible = false;
- }
- function onEnterFrame()
- {
- if(this.myBox.x != null)
- {
- this.x = this.myBox.x;
- this.y = this.myBox.y;
- this.z = this.myBox.z;
- this.w = this.myBox.w;
- this.b = this.myBox.b;
- this.h = this.myBox.h;
- }
- }
- }
-